rs2324 2.2.0
Loading...
Searching...
No Matches
rs2324


RS232 4 Click

RS232 4 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.


Click Library

  • Author : Stefan Filipovic
  • Date : Jul 2025.
  • Type : UART type

Software Support

Example Description

This example demonstrates the use of an RS232 4 Click board by showing the communication between the two Click board configured as a receiver and transmitter.

Example Libraries

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.RS2324

Example Key Functions

  • rs2324_cfg_setup This function initializes Click configuration structure to initial values.
    void rs2324_cfg_setup(rs2324_cfg_t *cfg)
    RS232 4 configuration object setup function.
    RS232 4 Click configuration object.
    Definition rs2324.h:128
  • rs2324_init This function initializes all necessary pins and peripherals used for this Click board.
    err_t rs2324_init ( rs2324_t *ctx, rs2324_cfg_t *cfg );
    err_t rs2324_init(rs2324_t *ctx, rs2324_cfg_t *cfg)
    RS232 4 initialization function.
    RS232 4 Click context object.
    Definition rs2324.h:107
  • rs2324_generic_write This function writes a desired number of data bytes by using UART serial interface.
    err_t rs2324_generic_write ( rs2324_t *ctx, uint8_t *data_in, uint16_t len );
    err_t rs2324_generic_write(rs2324_t *ctx, uint8_t *data_in, uint16_t len)
    RS232 4 data writing function.
  • rs2324_generic_read This function reads a desired number of data bytes by using UART serial interface.
    err_t rs2324_generic_read ( rs2324_t *ctx, uint8_t *data_out, uint16_t len );
    err_t rs2324_generic_read(rs2324_t *ctx, uint8_t *data_out, uint16_t len)
    RS232 4 data reading function.

Application Init

Initializes the driver and logger and displays the selected application mode.

void application_init ( void )
{
log_cfg_t log_cfg;
rs2324_cfg_t rs2324_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
rs2324_cfg_setup( &rs2324_cfg );
RS2324_MAP_MIKROBUS( rs2324_cfg, MIKROBUS_1 );
if ( UART_ERROR == rs2324_init( &rs2324, &rs2324_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
#ifdef DEMO_APP_TRANSMITTER
log_printf( &logger, " Application Mode: Transmitter\r\n" );
#else
log_printf( &logger, " Application Mode: Receiver\r\n" );
#endif
log_info( &logger, " Application Task " );
}
#define RS2324_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition rs2324.h:93
void application_init(void)
Definition main.c:34

Application Task

Depending on the selected mode, it reads all the received data or sends the desired message every 2 seconds.

void application_task ( void )
{
#ifdef DEMO_APP_TRANSMITTER
log_printf( &logger, "%s", ( char * ) DEMO_TEXT_MESSAGE );
Delay_ms( 1000 );
Delay_ms( 1000 );
#else
uint8_t rx_data = 0;
if ( rs2324_generic_read( &rs2324, &rx_data, 1 ) > 0 )
{
log_printf( &logger, "%c", rx_data );
}
#endif
}
#define DEMO_TEXT_MESSAGE
Definition main.c:29
void application_task(void)
Definition main.c:69

Note

NOTE_IF_REQUIRED

Application Output

This Click board can be interfaced and monitored in two ways:

  • Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
  • UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.

Additional Notes and Information

The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.